home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 118 / cd-rom 118.iso / aplic / open / openofficeorg1.cab / DataAccess.xcs < prev    next >
Encoding:
Extensible Markup Language  |  2005-02-03  |  30.3 KB  |  1,280 lines

  1. <?xml version='1.0' encoding='UTF-8'?>
  2.  
  3. <oor:component-schema oor:name="DataAccess" oor:package="org.openoffice.Office" xml:lang="en-US" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4.  
  5.     <info/>
  6.     <import oor:component="org.openoffice.Office.Common"/>
  7.     <uses oor:component="org.openoffice.Office.Common"/>
  8.     <templates>
  9.  
  10.         <info/>
  11.         <group oor:name="DatabaseNameSetting">
  12.  
  13.             <info>
  14.  
  15.                 <desc>Describes how to establish a database connection and how to filter and layout the database data.</desc>
  16.             </info>
  17.             <prop oor:name="Name" oor:type="xs:string">
  18.  
  19.                 <info>
  20.  
  21.                     <desc>Specifies the name of the database.</desc>
  22.                 </info>
  23.             </prop>
  24.             <prop oor:name="Location" oor:type="xs:string">
  25.  
  26.                 <info>
  27.  
  28.                     <desc>Specifies the location of the database.</desc>
  29.                 </info>
  30.             </prop>
  31.         </group>
  32.         <group oor:name="EmbeddedDatabaseSetting">
  33.  
  34.             <info>
  35.  
  36.                 <desc>Describes a setting for an embedded database.</desc>
  37.             </info>
  38.             <prop oor:name="Value" oor:type="oor:any">
  39.  
  40.                 <info>
  41.  
  42.                     <desc>Describes the value for an embedded database setting.</desc>
  43.                 </info>
  44.             </prop>
  45.         </group>
  46.         <group oor:name="EmbeddedDatabaseName">
  47.  
  48.             <info>
  49.  
  50.                 <desc>Describes the URL schema for an embedded database. They must start with sdbc:embedded:.</desc>
  51.             </info>
  52.             <prop oor:name="URL" oor:type="xs:string">
  53.  
  54.                 <info>
  55.  
  56.                     <desc>Specifies the URL for the embedded database.</desc>
  57.                 </info>
  58.             </prop>
  59.             <prop oor:name="UIName" oor:type="xs:string" oor:localized="true">
  60.  
  61.                 <info>
  62.  
  63.                     <desc>Specifies the name of the embedded database which will be diaplyed in the statusbar of the database application.</desc>
  64.                 </info>
  65.             </prop>
  66.             <set oor:name="EmbeddedDatabaseSettings" oor:node-type="EmbeddedDatabaseSetting">
  67.  
  68.                 <info>
  69.  
  70.                     <desc>Specifies the settings of an embedded database.</desc>
  71.                 </info>
  72.             </set>
  73.         </group>
  74.         <group oor:name="DataSource">
  75.  
  76.             <info>
  77.  
  78.                 <desc>Specifies the data source to be used for the bibliography.</desc>
  79.             </info>
  80.             <prop oor:name="DataSourceName" oor:type="xs:string">
  81.  
  82.                 <info>
  83.  
  84.                     <desc>Specifies the name of the registered data source.</desc>
  85.                 </info>
  86.             </prop>
  87.             <prop oor:name="Command" oor:type="xs:string">
  88.  
  89.                 <info>
  90.  
  91.                     <desc>Specifies the command to execute on the data source to retrieve the result set. This may be an SQL command or a table name or a query name.</desc>
  92.                 </info>
  93.             </prop>
  94.             <prop oor:name="CommandType" oor:type="xs:short">
  95.  
  96.                 <info>
  97.  
  98.                     <desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc>
  99.                 </info>
  100.             </prop>
  101.             <set oor:name="Fields" oor:node-type="FieldAssignment">
  102.  
  103.                 <info>
  104.  
  105.                     <desc>Specifies the column name mapping between the programatic column name and the logical column name.</desc>
  106.                 </info>
  107.             </set>
  108.         </group>
  109.         <group oor:name="FieldAssignment">
  110.  
  111.             <info>
  112.  
  113.                 <desc>Specifies the mapping between the desired (logical) column titles and the real column titles of the data source.</desc>
  114.             </info>
  115.             <prop oor:name="ProgrammaticFieldName" oor:type="xs:string">
  116.  
  117.                 <info>
  118.  
  119.                     <desc>Specifies the desired (logical) column name.</desc>
  120.                 </info>
  121.             </prop>
  122.             <prop oor:name="AssignedFieldName" oor:type="xs:string">
  123.  
  124.                 <info>
  125.  
  126.                     <desc>Specifies the real column name used in the data source.</desc>
  127.                 </info>
  128.             </prop>
  129.         </group>
  130.         <group oor:name="DriverPooling">
  131.  
  132.             <info>
  133.  
  134.                 <desc>Specifies the connection pooling of used database drivers.</desc>
  135.             </info>
  136.             <prop oor:name="DriverName" oor:type="xs:string">
  137.  
  138.                 <info>
  139.  
  140.                     <desc>Specifies the name of the database drivers.</desc>
  141.                 </info>
  142.             </prop>
  143.             <prop oor:name="Enable" oor:type="xs:boolean">
  144.  
  145.                 <info>
  146.  
  147.                     <desc>Specifies if the pooling for this driver should be enabled.</desc>
  148.                 </info>
  149.             </prop>
  150.             <prop oor:name="Timeout" oor:type="xs:int">
  151.  
  152.                 <info>
  153.  
  154.                     <desc>Specifies the time after a connection will be released.</desc>
  155.                 </info>
  156.             </prop>
  157.         </group>
  158.         <group oor:name="UserDefinedDriver">
  159.  
  160.             <info>
  161.  
  162.                 <desc>Specifies the user defined database drivers which should appear in the data source administration dialog.</desc>
  163.             </info>
  164.             <prop oor:name="DriverPageDisplayName" oor:type="xs:string">
  165.  
  166.                 <info>
  167.  
  168.                     <desc>Specifies the display name of the database driver page.</desc>
  169.                 </info>
  170.             </prop>
  171.             <prop oor:name="DriverTypeDisplayName" oor:type="xs:string">
  172.  
  173.                 <info>
  174.  
  175.                     <desc>Specifies the display name of the database driver.</desc>
  176.                 </info>
  177.             </prop>
  178.             <prop oor:name="DriverDsnPrefix" oor:type="xs:string">
  179.  
  180.                 <info>
  181.  
  182.                     <desc>Specifies the prefix of the URL of the database driver.</desc>
  183.                 </info>
  184.             </prop>
  185.             <prop oor:name="Extension" oor:type="xs:string">
  186.  
  187.                 <info>
  188.  
  189.                     <desc>The file extension, which match to this type. Only set when it is file based driver</desc>
  190.                 </info>
  191.                 <value/>
  192.             </prop>
  193.         </group>
  194.     </templates>
  195.     <component>
  196.  
  197.         <info/>
  198.         <group oor:name="EmbeddedDatabases">
  199.  
  200.             <info>
  201.  
  202.                 <desc>Specifies the default embedded database which should be used.</desc>
  203.             </info>
  204.             <prop oor:name="DefaultEmbeddedDatabase" oor:type="xs:string">
  205.  
  206.                 <info>
  207.  
  208.                     <desc>Specifies the name of the embedded database to use.</desc>
  209.                 </info>
  210.             </prop>
  211.             <set oor:name="EmbeddedDatabaseNames" oor:node-type="EmbeddedDatabaseName">
  212.  
  213.                 <info>
  214.  
  215.                     <desc>Specifies all embedded database names which are registered.</desc>
  216.                 </info>
  217.             </set>
  218.         </group>
  219.         <group oor:name="DriverManager">
  220.  
  221.             <info>
  222.  
  223.                 <desc>Specifies additional information about the database drivers.</desc>
  224.             </info>
  225.             <prop oor:name="DriverPrecedence" oor:type="oor:string-list">
  226.  
  227.                 <info>
  228.  
  229.                     <desc>Specifies order of database drivers in which they should be asked if the accept the connection string.</desc>
  230.                 </info>
  231.                 <value oor:separator=";">com.sun.star.comp.sdbc.ODBCDriver;com.sun.star.comp.sdbc.JDBCDriver</value>
  232.             </prop>
  233.         </group>
  234.         <group oor:name="ConnectionPool">
  235.  
  236.             <info>
  237.  
  238.                 <desc>Specifies all information which is needed for the global connection pool.</desc>
  239.             </info>
  240.             <prop oor:name="EnablePooling" oor:type="xs:boolean">
  241.  
  242.                 <info>
  243.  
  244.                     <desc>Specifies if the global connection pool is enabled.</desc>
  245.                 </info>
  246.                 <value>false</value>
  247.             </prop>
  248.             <set oor:name="DriverSettings" oor:node-type="DriverPooling">
  249.  
  250.                 <info>
  251.  
  252.                     <desc>Specifies the connection pooling of used database drivers.</desc>
  253.                 </info>
  254.             </set>
  255.         </group>
  256.         <set oor:name="RegisteredNames" oor:node-type="DatabaseNameSetting">
  257.  
  258.             <info>
  259.  
  260.                 <desc>Specifies all names which are registered.</desc>
  261.             </info>
  262.         </set>
  263.         <set oor:name="UserDefinedDriverSettings" oor:node-type="UserDefinedDriver">
  264.  
  265.             <info>
  266.  
  267.                 <desc>Contains a list of descriptions for user defined drivers.</desc>
  268.             </info>
  269.         </set>
  270.         <group oor:name="AddressBook">
  271.  
  272.             <info>
  273.  
  274.                 <desc>Specifies the data source that can be used as an AddressBook.</desc>
  275.             </info>
  276.             <prop oor:name="DataSourceName" oor:type="xs:string">
  277.  
  278.                 <info>
  279.  
  280.                     <desc>Specifies the name of the registered data source.</desc>
  281.                 </info>
  282.                 <value/>
  283.             </prop>
  284.             <prop oor:name="Command" oor:type="xs:string">
  285.  
  286.                 <info>
  287.  
  288.                     <desc>Specifies the command to execute on the data source to retrieve the result set. This may be an SQL command or a table name or a query name.</desc>
  289.                 </info>
  290.                 <value/>
  291.             </prop>
  292.             <prop oor:name="CommandType" oor:type="xs:short">
  293.  
  294.                 <info>
  295.  
  296.                     <desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc>
  297.                 </info>
  298.             </prop>
  299.             <prop oor:name="AutoPilotCompleted" oor:type="xs:boolean">
  300.  
  301.                 <info>
  302.  
  303.                     <desc>Specifies if the auto pilot is completed.</desc>
  304.                 </info>
  305.                 <value>false</value>
  306.             </prop>
  307.             <set oor:name="Fields" oor:node-type="FieldAssignment">
  308.  
  309.                 <info>
  310.  
  311.                     <desc>Specifies the column name mapping between the programatic column name and the logical column name.</desc>
  312.                 </info>
  313.             </set>
  314.         </group>
  315.         <group oor:name="Bibliography">
  316.  
  317.             <info>
  318.  
  319.                 <desc>Specifies settings of the bibliography component</desc>
  320.             </info>
  321.             <prop oor:name="BeamerHeight" oor:type="xs:int">
  322.  
  323.                 <info>
  324.  
  325.                     <desc>Specifies the height of the database beamer</desc>
  326.                 </info>
  327.             </prop>
  328.             <prop oor:name="ViewHeight" oor:type="xs:int">
  329.  
  330.                 <info>
  331.  
  332.                     <desc>Specifies the height of the view window</desc>
  333.                 </info>
  334.             </prop>
  335.             <prop oor:name="QueryText" oor:type="xs:string">
  336.  
  337.                 <info>
  338.  
  339.                     <desc>Specifies the search text for filtering</desc>
  340.                 </info>
  341.                 <value/>
  342.             </prop>
  343.             <prop oor:name="QueryField" oor:type="xs:string">
  344.  
  345.                 <info>
  346.  
  347.                     <desc>Specifies the search field for filtering</desc>
  348.                 </info>
  349.                 <value/>
  350.             </prop>
  351.             <prop oor:name="ShowColumnAssignmentWarning" oor:type="xs:boolean">
  352.  
  353.                 <info>
  354.  
  355.                     <desc>Determines whether a non-assigned column results in a warning box.</desc>
  356.                 </info>
  357.                 <value>true</value>
  358.             </prop>
  359.             <node-ref oor:name="CurrentDataSource" oor:node-type="DataSource">
  360.  
  361.                 <info>
  362.  
  363.                     <desc>Determines the current data source for the bibliography.</desc>
  364.                 </info>
  365.             </node-ref>
  366.             <set oor:name="DataSourceHistory" oor:node-type="DataSource">
  367.  
  368.                 <info>
  369.  
  370.                     <desc>Specifies the data source that can be used as a bibliography.</desc>
  371.                 </info>
  372.             </set>
  373.         </group>
  374.         <group oor:name="DriverSettings">
  375.  
  376.             <info>
  377.  
  378.                 <desc>Specifies the driver settings that are used.</desc>
  379.             </info>
  380.             <group oor:name="com.sun.star.comp.sdbc.MozabDriver">
  381.  
  382.                 <info>
  383.  
  384.                     <desc>Specifies the driver settings for the mozilla database driver.</desc>
  385.                 </info>
  386.                 <group oor:name="MozillaPreferences">
  387.  
  388.                     <info>
  389.  
  390.                         <desc>Specifies the mozilla preferences.</desc>
  391.                     </info>
  392.                     <prop oor:name="ProfileName" oor:type="xs:string">
  393.  
  394.                         <info>
  395.  
  396.                             <desc>Specifies the mozilla profile name.</desc>
  397.                         </info>
  398.                         <value/>
  399.                     </prop>
  400.                     <prop oor:name="PabDescription" oor:type="xs:string" oor:localized="true">
  401.  
  402.                         <info>
  403.  
  404.                             <desc>Describes the name of the table which the Mozilla Personal Address Book is mapped to</desc>
  405.                         </info>
  406.                         <value/>
  407.                     </prop>
  408.                     <prop oor:name="HisDescription" oor:type="xs:string" oor:localized="true">
  409.  
  410.                         <info>
  411.  
  412.                             <desc>Describes the name of the table which the Mozilla Collected Addresses is mapped to</desc>
  413.                         </info>
  414.                         <value/>
  415.                     </prop>
  416.                 </group>
  417.                 <group oor:name="ColumnAliases">
  418.  
  419.                     <info>
  420.  
  421.                         <desc>Specifies the column alias names used.</desc>
  422.                     </info>
  423.                     <prop oor:name="FirstName" oor:type="xs:string" oor:localized="true">
  424.  
  425.                         <info>
  426.  
  427.                             <desc>Specifies the first name.</desc>
  428.                         </info>
  429.                     </prop>
  430.                     <prop oor:name="LastName" oor:type="xs:string" oor:localized="true">
  431.  
  432.                         <info>
  433.  
  434.                             <desc>Specifies the last name.</desc>
  435.                         </info>
  436.                     </prop>
  437.                     <prop oor:name="DisplayName" oor:type="xs:string" oor:localized="true">
  438.  
  439.                         <info>
  440.  
  441.                             <desc>Specifies the display name.</desc>
  442.                         </info>
  443.                     </prop>
  444.                     <prop oor:name="NickName" oor:type="xs:string" oor:localized="true">
  445.  
  446.                         <info>
  447.  
  448.                             <desc>Specifies the nickname.</desc>
  449.                         </info>
  450.                     </prop>
  451.                     <prop oor:name="PrimaryEmail" oor:type="xs:string" oor:localized="true">
  452.  
  453.                         <info>
  454.  
  455.                             <desc>Specifies the primary email.</desc>
  456.                         </info>
  457.                     </prop>
  458.                     <prop oor:name="SecondEmail" oor:type="xs:string" oor:localized="true">
  459.  
  460.                         <info>
  461.  
  462.                             <desc>Specifies the first name.</desc>
  463.                         </info>
  464.                     </prop>
  465.                     <prop oor:name="PreferMailFormat" oor:type="xs:string" oor:localized="true">
  466.  
  467.                         <info>
  468.  
  469.                             <desc>Specifies the preferred mail format.</desc>
  470.                         </info>
  471.                     </prop>
  472.                     <prop oor:name="WorkPhone" oor:type="xs:string" oor:localized="true">
  473.  
  474.                         <info>
  475.  
  476.                             <desc>Specifies the phone at work.</desc>
  477.                         </info>
  478.                     </prop>
  479.                     <prop oor:name="HomePhone" oor:type="xs:string" oor:localized="true">
  480.  
  481.                         <info>
  482.  
  483.                             <desc>Specifies the phone at home.</desc>
  484.                         </info>
  485.                     </prop>
  486.                     <prop oor:name="FaxNumber" oor:type="xs:string" oor:localized="true">
  487.  
  488.                         <info>
  489.  
  490.                             <desc>Specifies the fax number.</desc>
  491.                         </info>
  492.                     </prop>
  493.                     <prop oor:name="PagerNumber" oor:type="xs:string" oor:localized="true">
  494.  
  495.                         <info>
  496.  
  497.                             <desc>Specifies the pager number.</desc>
  498.                         </info>
  499.                     </prop>
  500.                     <prop oor:name="CellularNumber" oor:type="xs:string" oor:localized="true">
  501.  
  502.                         <info>
  503.  
  504.                             <desc>Specifies the cellular number.</desc>
  505.                         </info>
  506.                     </prop>
  507.                     <prop oor:name="HomeAddress" oor:type="xs:string" oor:localized="true">
  508.  
  509.                         <info>
  510.  
  511.                             <desc>Specifies the home address.</desc>
  512.                         </info>
  513.                     </prop>
  514.                     <prop oor:name="HomeAddress2" oor:type="xs:string" oor:localized="true">
  515.  
  516.                         <info>
  517.  
  518.                             <desc>Specifies the 2nd home address.</desc>
  519.                         </info>
  520.                     </prop>
  521.                     <prop oor:name="HomeCity" oor:type="xs:string" oor:localized="true">
  522.  
  523.                         <info>
  524.  
  525.                             <desc>Specifies the home city.</desc>
  526.                         </info>
  527.                     </prop>
  528.                     <prop oor:name="HomeState" oor:type="xs:string" oor:localized="true">
  529.  
  530.                         <info>
  531.  
  532.                             <desc>Specifies the home state.</desc>
  533.                         </info>
  534.                     </prop>
  535.                     <prop oor:name="HomeZipCode" oor:type="xs:string" oor:localized="true">
  536.  
  537.                         <info>
  538.  
  539.                             <desc>Specifies the home ZIP code.</desc>
  540.                         </info>
  541.                     </prop>
  542.                     <prop oor:name="HomeCountry" oor:type="xs:string" oor:localized="true">
  543.  
  544.                         <info>
  545.  
  546.                             <desc>Specifies the home country.</desc>
  547.                         </info>
  548.                     </prop>
  549.                     <prop oor:name="WorkAddress" oor:type="xs:string" oor:localized="true">
  550.  
  551.                         <info>
  552.  
  553.                             <desc>Specifies the work address.</desc>
  554.                         </info>
  555.                     </prop>
  556.                     <prop oor:name="WorkAddress2" oor:type="xs:string" oor:localized="true">
  557.  
  558.                         <info>
  559.  
  560.                             <desc>Specifies the 2nd work address.</desc>
  561.                         </info>
  562.                     </prop>
  563.                     <prop oor:name="WorkCity" oor:type="xs:string" oor:localized="true">
  564.  
  565.                         <info>
  566.  
  567.                             <desc>Specifies the work city.</desc>
  568.                         </info>
  569.                     </prop>
  570.                     <prop oor:name="WorkState" oor:type="xs:string" oor:localized="true">
  571.  
  572.                         <info>
  573.  
  574.                             <desc>Specifies the work state.</desc>
  575.                         </info>
  576.                     </prop>
  577.                     <prop oor:name="WorkZipCode" oor:type="xs:string" oor:localized="true">
  578.  
  579.                         <info>
  580.  
  581.                             <desc>Specifies the work ZIP code.</desc>
  582.                         </info>
  583.                     </prop>
  584.                     <prop oor:name="WorkCountry" oor:type="xs:string" oor:localized="true">
  585.  
  586.                         <info>
  587.  
  588.                             <desc>Specifies the work country.</desc>
  589.                         </info>
  590.                     </prop>
  591.                     <prop oor:name="JobTitle" oor:type="xs:string" oor:localized="true">
  592.  
  593.                         <info>
  594.  
  595.                             <desc>Specifies the job title.</desc>
  596.                         </info>
  597.                     </prop>
  598.                     <prop oor:name="Department" oor:type="xs:string" oor:localized="true">
  599.  
  600.                         <info>
  601.  
  602.                             <desc>Specifies the department.</desc>
  603.                         </info>
  604.                     </prop>
  605.                     <prop oor:name="Company" oor:type="xs:string" oor:localized="true">
  606.  
  607.                         <info>
  608.  
  609.                             <desc>Specifies the company.</desc>
  610.                         </info>
  611.                     </prop>
  612.                     <prop oor:name="WebPage1" oor:type="xs:string" oor:localized="true">
  613.  
  614.                         <info>
  615.  
  616.                             <desc>Specifies the 1st webpage.</desc>
  617.                         </info>
  618.                     </prop>
  619.                     <prop oor:name="WebPage2" oor:type="xs:string" oor:localized="true">
  620.  
  621.                         <info>
  622.  
  623.                             <desc>Specifies the 2nd webpage.</desc>
  624.                         </info>
  625.                     </prop>
  626.                     <prop oor:name="BirthYear" oor:type="xs:string" oor:localized="true">
  627.  
  628.                         <info>
  629.  
  630.                             <desc>Specifies the birth year.</desc>
  631.                         </info>
  632.                     </prop>
  633.                     <prop oor:name="BirthMonth" oor:type="xs:string" oor:localized="true">
  634.  
  635.                         <info>
  636.  
  637.                             <desc>Specifies the birth month.</desc>
  638.                         </info>
  639.                     </prop>
  640.                     <prop oor:name="BirthDay" oor:type="xs:string" oor:localized="true">
  641.  
  642.                         <info>
  643.  
  644.                             <desc>Specifies the birth day.</desc>
  645.                         </info>
  646.                     </prop>
  647.                     <prop oor:name="Custom1" oor:type="xs:string" oor:localized="true">
  648.  
  649.                         <info>
  650.  
  651.                             <desc>Specifies the 1st custom field.</desc>
  652.                         </info>
  653.                     </prop>
  654.                     <prop oor:name="Custom2" oor:type="xs:string" oor:localized="true">
  655.  
  656.                         <info>
  657.  
  658.                             <desc>Specifies the 2nd custom field.</desc>
  659.                         </info>
  660.                     </prop>
  661.                     <prop oor:name="Custom3" oor:type="xs:string" oor:localized="true">
  662.  
  663.                         <info>
  664.  
  665.                             <desc>Specifies the 3rd custom field.</desc>
  666.                         </info>
  667.                     </prop>
  668.                     <prop oor:name="Custom4" oor:type="xs:string" oor:localized="true">
  669.  
  670.                         <info>
  671.  
  672.                             <desc>Specifies the 4th custom field.</desc>
  673.                         </info>
  674.                     </prop>
  675.                     <prop oor:name="Notes" oor:type="xs:string" oor:localized="true">
  676.  
  677.                         <info>
  678.  
  679.                             <desc>Specifies the notes.</desc>
  680.                         </info>
  681.                     </prop>
  682.                 </group>
  683.             </group>
  684.             <group oor:name="com.sun.star.comp.sdbc.evoab.OEvoabDriver">
  685.  
  686.                 <info>
  687.  
  688.                     <desc>Specifies the driver settings for the evolution database driver.</desc>
  689.                 </info>
  690.                 <group oor:name="EvolutionPreferences">
  691.  
  692.                     <info>
  693.  
  694.                         <desc>Specifies the evolution preferences.</desc>
  695.                     </info>
  696.                     <prop oor:name="FullPathExportingCommand" oor:type="xs:string">
  697.  
  698.                         <info>
  699.  
  700.                             <desc>Specifies the evolution full path exporting command name.</desc>
  701.                         </info>
  702.                         <value/>
  703.                     </prop>
  704.                 </group>
  705.                 <group oor:name="ColumnAliases">
  706.  
  707.                     <info>
  708.  
  709.                         <desc>Specifies the column alias names used.</desc>
  710.                     </info>
  711.                     <prop oor:name="FirstName" oor:type="xs:string">
  712.  
  713.                         <info>
  714.  
  715.                             <desc>Specifies the first name.</desc>
  716.                         </info>
  717.                     </prop>
  718.                     <prop oor:name="LastName" oor:type="xs:string">
  719.  
  720.                         <info>
  721.  
  722.                             <desc>Specifies the last name.</desc>
  723.                         </info>
  724.                     </prop>
  725.                     <prop oor:name="DisplayName" oor:type="xs:string">
  726.  
  727.                         <info>
  728.  
  729.                             <desc>Specifies the display name.</desc>
  730.                         </info>
  731.                     </prop>
  732.                     <prop oor:name="NickName" oor:type="xs:string">
  733.  
  734.                         <info>
  735.  
  736.                             <desc>Specifies the nickname.</desc>
  737.                         </info>
  738.                     </prop>
  739.                     <prop oor:name="PrimaryEmail" oor:type="xs:string">
  740.  
  741.                         <info>
  742.  
  743.                             <desc>Specifies the primary email.</desc>
  744.                         </info>
  745.                     </prop>
  746.                     <prop oor:name="SecondEmail" oor:type="xs:string">
  747.  
  748.                         <info>
  749.  
  750.                             <desc>Specifies the first name.</desc>
  751.                         </info>
  752.                     </prop>
  753.                     <prop oor:name="PreferMailFormat" oor:type="xs:string">
  754.  
  755.                         <info>
  756.  
  757.                             <desc>Specifies the perfered mail format.</desc>
  758.                         </info>
  759.                     </prop>
  760.                     <prop oor:name="WorkPhone" oor:type="xs:string">
  761.  
  762.                         <info>
  763.  
  764.                             <desc>Specifies the phone at work.</desc>
  765.                         </info>
  766.                     </prop>
  767.                     <prop oor:name="HomePhone" oor:type="xs:string">
  768.  
  769.                         <info>
  770.  
  771.                             <desc>Specifies the phone at home.</desc>
  772.                         </info>
  773.                     </prop>
  774.                     <prop oor:name="FaxNumber" oor:type="xs:string">
  775.  
  776.                         <info>
  777.  
  778.                             <desc>Specifies the fax number.</desc>
  779.                         </info>
  780.                     </prop>
  781.                     <prop oor:name="PagerNumber" oor:type="xs:string">
  782.  
  783.                         <info>
  784.  
  785.                             <desc>Specifies the pager number.</desc>
  786.                         </info>
  787.                     </prop>
  788.                     <prop oor:name="CellularNumber" oor:type="xs:string">
  789.  
  790.                         <info>
  791.  
  792.                             <desc>Specifies the cellular number.</desc>
  793.                         </info>
  794.                     </prop>
  795.                     <prop oor:name="HomeAddress" oor:type="xs:string">
  796.  
  797.                         <info>
  798.  
  799.                             <desc>Specifies the home address.</desc>
  800.                         </info>
  801.                     </prop>
  802.                     <prop oor:name="HomeAddress2" oor:type="xs:string">
  803.  
  804.                         <info>
  805.  
  806.                             <desc>Specifies the 2nd home address.</desc>
  807.                         </info>
  808.                     </prop>
  809.                     <prop oor:name="HomeCity" oor:type="xs:string">
  810.  
  811.                         <info>
  812.  
  813.                             <desc>Specifies the home city.</desc>
  814.                         </info>
  815.                     </prop>
  816.                     <prop oor:name="HomeState" oor:type="xs:string">
  817.  
  818.                         <info>
  819.  
  820.                             <desc>Specifies the home state.</desc>
  821.                         </info>
  822.                     </prop>
  823.                     <prop oor:name="HomeZipCode" oor:type="xs:string">
  824.  
  825.                         <info>
  826.  
  827.                             <desc>Specifies the home ZIP code.</desc>
  828.                         </info>
  829.                     </prop>
  830.                     <prop oor:name="HomeCountry" oor:type="xs:string">
  831.  
  832.                         <info>
  833.  
  834.                             <desc>Specifies the home country.</desc>
  835.                         </info>
  836.                     </prop>
  837.                     <prop oor:name="WorkAddress" oor:type="xs:string">
  838.  
  839.                         <info>
  840.  
  841.                             <desc>Specifies the work address.</desc>
  842.                         </info>
  843.                     </prop>
  844.                     <prop oor:name="WorkAddress2" oor:type="xs:string">
  845.  
  846.                         <info>
  847.  
  848.                             <desc>Specifies the 2nd work address.</desc>
  849.                         </info>
  850.                     </prop>
  851.                     <prop oor:name="WorkCity" oor:type="xs:string">
  852.  
  853.                         <info>
  854.  
  855.                             <desc>Specifies the work city.</desc>
  856.                         </info>
  857.                     </prop>
  858.                     <prop oor:name="WorkState" oor:type="xs:string">
  859.  
  860.                         <info>
  861.  
  862.                             <desc>Specifies the work state.</desc>
  863.                         </info>
  864.                     </prop>
  865.                     <prop oor:name="WorkZipCode" oor:type="xs:string">
  866.  
  867.                         <info>
  868.  
  869.                             <desc>Specifies the work ZIP code.</desc>
  870.                         </info>
  871.                     </prop>
  872.                     <prop oor:name="WorkCountry" oor:type="xs:string">
  873.  
  874.                         <info>
  875.  
  876.                             <desc>Specifies the work country.</desc>
  877.                         </info>
  878.                     </prop>
  879.                     <prop oor:name="JobTitle" oor:type="xs:string">
  880.  
  881.                         <info>
  882.  
  883.                             <desc>Specifies the job title.</desc>
  884.                         </info>
  885.                     </prop>
  886.                     <prop oor:name="Department" oor:type="xs:string">
  887.  
  888.                         <info>
  889.  
  890.                             <desc>Specifies the department.</desc>
  891.                         </info>
  892.                     </prop>
  893.                     <prop oor:name="Company" oor:type="xs:string">
  894.  
  895.                         <info>
  896.  
  897.                             <desc>Specifies the company.</desc>
  898.                         </info>
  899.                     </prop>
  900.                     <prop oor:name="WebPage1" oor:type="xs:string">
  901.  
  902.                         <info>
  903.  
  904.                             <desc>Specifies the 1st webpage.</desc>
  905.                         </info>
  906.                     </prop>
  907.                     <prop oor:name="WebPage2" oor:type="xs:string">
  908.  
  909.                         <info>
  910.  
  911.                             <desc>Specifies the 2nd webpage.</desc>
  912.                         </info>
  913.                     </prop>
  914.                     <prop oor:name="BirthYear" oor:type="xs:string">
  915.  
  916.                         <info>
  917.  
  918.                             <desc>Specifies the birth year.</desc>
  919.                         </info>
  920.                     </prop>
  921.                     <prop oor:name="BirthMonth" oor:type="xs:string">
  922.  
  923.                         <info>
  924.  
  925.                             <desc>Specifies the birth month.</desc>
  926.                         </info>
  927.                     </prop>
  928.                     <prop oor:name="BirthDay" oor:type="xs:string">
  929.  
  930.                         <info>
  931.  
  932.                             <desc>Specifies the birth day.</desc>
  933.                         </info>
  934.                     </prop>
  935.                     <prop oor:name="Notes" oor:type="xs:string">
  936.  
  937.                         <info>
  938.  
  939.                             <desc>Specifies the notes.</desc>
  940.                         </info>
  941.                     </prop>
  942.                 </group>
  943.             </group>
  944.         </group>
  945.         <group oor:name="FormSearchOptions">
  946.  
  947.             <info>
  948.  
  949.                 <desc>Specifies the options for searching in forms.</desc>
  950.             </info>
  951.             <prop oor:name="SearchType" oor:type="xs:string">
  952.  
  953.                 <info>
  954.  
  955.                     <desc>Specifies the search type.</desc>
  956.                 </info>
  957.                 <constraints>
  958.  
  959.                     <enumeration oor:value="text">
  960.  
  961.                         <info>
  962.  
  963.                             <desc>Search for text</desc>
  964.                         </info>
  965.                     </enumeration>
  966.                     <enumeration oor:value="null">
  967.  
  968.                         <info>
  969.  
  970.                             <desc>Search for NULL</desc>
  971.                         </info>
  972.                     </enumeration>
  973.                     <enumeration oor:value="non-null">
  974.  
  975.                         <info>
  976.  
  977.                             <desc>Search for non-NULL</desc>
  978.                         </info>
  979.                     </enumeration>
  980.                 </constraints>
  981.                 <value>text</value>
  982.             </prop>
  983.             <prop oor:name="SearchPosition" oor:type="xs:string">
  984.  
  985.                 <info>
  986.  
  987.                     <desc>Specifies the search position.</desc>
  988.                 </info>
  989.                 <constraints>
  990.  
  991.                     <enumeration oor:value="anywhere-in-field">
  992.  
  993.                         <info>
  994.  
  995.                             <desc>Anywhere</desc>
  996.                         </info>
  997.                     </enumeration>
  998.                     <enumeration oor:value="beginning-of-field">
  999.  
  1000.                         <info>
  1001.  
  1002.                             <desc>Beginning</desc>
  1003.                         </info>
  1004.                     </enumeration>
  1005.                     <enumeration oor:value="end-of-field">
  1006.  
  1007.                         <info>
  1008.  
  1009.                             <desc>End</desc>
  1010.                         </info>
  1011.                     </enumeration>
  1012.                     <enumeration oor:value="complete-field">
  1013.  
  1014.                         <info>
  1015.  
  1016.                             <desc>Complete</desc>
  1017.                         </info>
  1018.                     </enumeration>
  1019.                 </constraints>
  1020.                 <value>anywhere-in-field</value>
  1021.             </prop>
  1022.             <prop oor:name="SearchHistory" oor:type="oor:string-list">
  1023.  
  1024.                 <info>
  1025.  
  1026.                     <desc>Contains a list of the previous search strings.</desc>
  1027.                 </info>
  1028.             </prop>
  1029.             <prop oor:name="IsSearchAllFields" oor:type="xs:boolean">
  1030.  
  1031.                 <info>
  1032.  
  1033.                     <desc>Specifies if all fields should be searched.</desc>
  1034.                 </info>
  1035.                 <value>false</value>
  1036.             </prop>
  1037.             <prop oor:name="IsUseFormatter" oor:type="xs:boolean">
  1038.  
  1039.                 <info>
  1040.  
  1041.                     <desc>Specifies that the formatter should be used.</desc>
  1042.                 </info>
  1043.                 <value>true</value>
  1044.             </prop>
  1045.             <prop oor:name="IsBackwards" oor:type="xs:boolean">
  1046.  
  1047.                 <info>
  1048.  
  1049.                     <desc>Specifies that the search starts backward.</desc>
  1050.                 </info>
  1051.                 <value>false</value>
  1052.             </prop>
  1053.             <prop oor:name="IsWildcardSearch" oor:type="xs:boolean">
  1054.  
  1055.                 <info>
  1056.  
  1057.                     <desc>Specifies that the search contains wildcards.</desc>
  1058.                 </info>
  1059.                 <value>false</value>
  1060.             </prop>
  1061.             <prop oor:name="IsUseRegularExpression" oor:type="xs:boolean">
  1062.  
  1063.                 <info>
  1064.  
  1065.                     <desc>Specifies that regular expressions should be used.</desc>
  1066.                 </info>
  1067.                 <value>false</value>
  1068.             </prop>
  1069.             <prop oor:name="IsSimilaritySearch" oor:type="xs:boolean">
  1070.  
  1071.                 <info>
  1072.  
  1073.                     <desc>Specifies that the similarity search should be used.</desc>
  1074.                 </info>
  1075.                 <value>false</value>
  1076.             </prop>
  1077.             <prop oor:name="IsLevenshteinRelaxed" oor:type="xs:boolean">
  1078.  
  1079.                 <info>
  1080.  
  1081.                     <desc>Specifies that the similarity search should be combined.</desc>
  1082.                 </info>
  1083.                 <value>false</value>
  1084.             </prop>
  1085.             <prop oor:name="LevenshteinOther" oor:type="xs:short">
  1086.  
  1087.                 <info>
  1088.  
  1089.                     <desc>Specifies the number of characters that can be exchanged while searching for similarity.</desc>
  1090.                 </info>
  1091.                 <value>2</value>
  1092.             </prop>
  1093.             <prop oor:name="LevenshteinShorter" oor:type="xs:short">
  1094.  
  1095.                 <info>
  1096.  
  1097.                     <desc>Specifies the number of characters that can be deleted while searching for similarity.</desc>
  1098.                 </info>
  1099.                 <value>2</value>
  1100.             </prop>
  1101.             <prop oor:name="LevenshteinLonger" oor:type="xs:short">
  1102.  
  1103.                 <info>
  1104.  
  1105.                     <desc>Specifies the number of characters that can be added while searching for similarity.</desc>
  1106.                 </info>
  1107.                 <value>2</value>
  1108.             </prop>
  1109.             <prop oor:name="IsMatchCase" oor:type="xs:boolean">
  1110.  
  1111.                 <info>
  1112.  
  1113.                     <desc>Specifies that the searched value should match.</desc>
  1114.                 </info>
  1115.                 <value>false</value>
  1116.             </prop>
  1117.             <prop oor:name="IsUseAsianOptions" oor:type="xs:boolean">
  1118.  
  1119.                 <info>
  1120.  
  1121.                     <desc>Specifies that the Asian options for search should be used.</desc>
  1122.                 </info>
  1123.                 <value>false</value>
  1124.             </prop>
  1125.             <group oor:name="Japanese">
  1126.  
  1127.                 <info>
  1128.  
  1129.                     <desc>Specifies the Japanese options for searching.</desc>
  1130.                 </info>
  1131.                 <prop oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean">
  1132.  
  1133.                     <info>
  1134.  
  1135.                         <desc>Specifies the MatchFullHalfWidthForms search option is enabled.</desc>
  1136.                     </info>
  1137.                     <value>true</value>
  1138.                 </prop>
  1139.                 <prop oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean">
  1140.  
  1141.                     <info>
  1142.  
  1143.                         <desc>Specifies the MatchHiraganaKatakana search option is enabled.</desc>
  1144.                     </info>
  1145.                     <value>true</value>
  1146.                 </prop>
  1147.                 <prop oor:name="IsMatchContractions" oor:type="xs:boolean">
  1148.  
  1149.                     <info>
  1150.  
  1151.                         <desc>Specifies the MatchContractions search option is enabled.</desc>
  1152.                     </info>
  1153.                     <value>true</value>
  1154.                 </prop>
  1155.                 <prop oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean">
  1156.  
  1157.                     <info>
  1158.  
  1159.                         <desc>Specifies the MatchMinusDashCho-on search option is enabled.</desc>
  1160.                     </info>
  1161.                     <value>true</value>
  1162.                 </prop>
  1163.                 <prop oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean">
  1164.  
  1165.                     <info>
  1166.  
  1167.                         <desc>Specifies the MatchRepeatCharMarks search option is enabled.</desc>
  1168.                     </info>
  1169.                     <value>true</value>
  1170.                 </prop>
  1171.                 <prop oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean">
  1172.  
  1173.                     <info>
  1174.  
  1175.                         <desc>Specifies the MatchVariantFormKanji search option is enabled.</desc>
  1176.                     </info>
  1177.                     <value>true</value>
  1178.                 </prop>
  1179.                 <prop oor:name="IsMatchOldKanaForms" oor:type="xs:boolean">
  1180.  
  1181.                     <info>
  1182.  
  1183.                         <desc>Specifies the MatchOldKanaForms search option is enabled.</desc>
  1184.                     </info>
  1185.                     <value>true</value>
  1186.                 </prop>
  1187.                 <prop oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean">
  1188.  
  1189.                     <info>
  1190.  
  1191.                         <desc>Specifies the Match_DiZi_DuZu search option is enabled.</desc>
  1192.                     </info>
  1193.                     <value>true</value>
  1194.                 </prop>
  1195.                 <prop oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean">
  1196.  
  1197.                     <info>
  1198.  
  1199.                         <desc>Specifies the Match_BaVa_HaFa search option is enabled.</desc>
  1200.                     </info>
  1201.                     <value>true</value>
  1202.                 </prop>
  1203.                 <prop oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean">
  1204.  
  1205.                     <info>
  1206.  
  1207.                         <desc>Specifies the Match_TsiThiChi_DhiZi search option is enabled.</desc>
  1208.                     </info>
  1209.                     <value>true</value>
  1210.                 </prop>
  1211.                 <prop oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean">
  1212.  
  1213.                     <info>
  1214.  
  1215.                         <desc>Specifies the Match_HyuIyu_ByuVyu search option is enabled.</desc>
  1216.                     </info>
  1217.                     <value>true</value>
  1218.                 </prop>
  1219.                 <prop oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean">
  1220.  
  1221.                     <info>
  1222.  
  1223.                         <desc>Specifies the Match_SeShe_ZeJe search option is enabled.</desc>
  1224.                     </info>
  1225.                     <value>true</value>
  1226.                 </prop>
  1227.                 <prop oor:name="IsMatch_IaIya" oor:type="xs:boolean">
  1228.  
  1229.                     <info>
  1230.  
  1231.                         <desc>Specifies the Match_IaIya search option is enabled.</desc>
  1232.                     </info>
  1233.                     <value>true</value>
  1234.                 </prop>
  1235.                 <prop oor:name="IsMatch_KiKu" oor:type="xs:boolean">
  1236.  
  1237.                     <info>
  1238.  
  1239.                         <desc>Specifies the Match_KiKu search option is enabled.</desc>
  1240.                     </info>
  1241.                     <value>true</value>
  1242.                 </prop>
  1243.                 <prop oor:name="IsIgnorePunctuation" oor:type="xs:boolean">
  1244.  
  1245.                     <info>
  1246.  
  1247.                         <desc>Specifies the IgnorePunctuation search option is enabled.</desc>
  1248.                     </info>
  1249.                     <value>true</value>
  1250.                 </prop>
  1251.                 <prop oor:name="IsIgnoreWhitespace" oor:type="xs:boolean">
  1252.  
  1253.                     <info>
  1254.  
  1255.                         <desc>Specifies the IgnoreWhitespace search option is enabled.</desc>
  1256.                     </info>
  1257.                     <value>true</value>
  1258.                 </prop>
  1259.                 <prop oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean">
  1260.  
  1261.                     <info>
  1262.  
  1263.                         <desc>Specifies the IgnoreProlongedSoundMark search option is enabled.</desc>
  1264.                     </info>
  1265.                     <value>true</value>
  1266.                 </prop>
  1267.                 <prop oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean">
  1268.  
  1269.                     <info>
  1270.  
  1271.                         <desc>Specifies the IgnoreMiddleDot search option is enabled.</desc>
  1272.                     </info>
  1273.                     <value>true</value>
  1274.                 </prop>
  1275.             </group>
  1276.         </group>
  1277.     </component>
  1278. </oor:component-schema>
  1279.  
  1280.